Package test

Source Code of test.TestProperties

/*
* Created on Jan 8, 2004
*
* To change the template for this generated file go to
* Window - Preferences - Java - Code Generation - Code and Comments
*/
package test;

import java.util.Properties;

/**
* @author John Zoetebier
*
*/
public class TestProperties {
 
  public static void main(String[] args) {
    Properties sp = System.getProperties();
    Properties myTable = new Properties(sp);
    myTable.list(System.out);
   
  }
}
TOP

Related Classes of test.TestProperties

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.